1. /* scfexpbs.cpp by K.Tsuru */
  2. // function ID = 9121
  3. /*************************************************
  4. SComplex class
  5. Let z = x+i*y.
  6. It returns exp(x+i*y) = exp(x)*{cos(y)+i*sin(y)}
  7. using binary splitting.
  8. **************************************************/
  9. #ifndef SN_H
  10. #include "sn.h"
  11. #endif
  12. SComplex CexpBS(const SComplex& z){
  13. SDouble r = ExpBS(z.Real());
  14. return CpolarBS(r, z.Imag());
  15. }

scfexpbs.cpp : last modifiled at 2015/07/26 15:34:25(411 bytes)
created at 2017/10/06 15:21:28
The creation time of this html file is 2017/10/06 15:27:09 (Fri Oct 06 15:27:09 2017).